home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 9
/
FM Towns Free Software Collection 9.iso
/
taropyon
/
silib
/
inc
/
scn
/
imgblk.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS (detected)
UTF-8
Wrap
C/C++ Source or Header
|
1994-11-16
|
332 b
|
20 lines
#ifndef _SCN_IMGBLK_H
#define _SCN_IMGBLK_H
#ifdef __HIGHC__
# ifndef _SIZE_T_DEFINED
# define _SIZE_T_DEFINED
typedef unsigned int size_t;
# endif
#endif
typedef struct
{
int pixel; /* ピクセル */
size_t siz; /* バイト数 */
int xs, ys; /* ドット数 */
char *dat; /* データ */
} IMGBLK_T;
#endif